home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / UNIX.ZIP / ACCUMUL / README.TXT < prev    next >
Encoding:
Text File  |  1996-11-15  |  2.7 KB  |  52 lines

  1. You should have the following files:
  2.  
  3. README.TXT    This file
  4. CULLWORD.EXE    Culls dictionary files for words that meet the systems requirements for passwords
  5. NEWPW.EXE    Unix password hacker program
  6. PARSE.EXE    passwd file parser, takes out passwds of * and nulls
  7. QSORT.EXE    Sorting program
  8. STRIP.EXE    Removes trailing blanks from text files
  9. UNIQUE.EXE    Removes duplicate lines from sorted text files
  10.  
  11.  
  12. NOTE: You must be in the directory where the input files are located for all of these programs: you can not specify paths are expect the program to check the environment for the PATH variable.
  13.  
  14. Syntax:
  15. -----------------------------------------------------------------------------
  16.  
  17. CULLWORD [inputfilename] [outputfilename]
  18. The program will ask you for minimum word length, if digits or uppercase characters are required, if digits are required, and if uppercase characters are required. The output file will consist of words from the input file that meet these requirements.
  19. -----------------------------------------------------------------------------
  20.  
  21. NEWPW [-BFN] [dictionaryfilename]
  22. The options are:
  23. ╖ B Print bell on hacked password.
  24. ╖ F Write valid passwords to the output file.
  25. ╖ N Try the loginid backwards and forwards as the passwd.
  26.  
  27. The dictionary file must be a text file with one word per line.
  28. The passwd file must be named æFILE.TXTÆ. Valid passwords will be written to æVALID.TXTÆ (when -F is used).
  29. If you do not specify a dictionary file, the program will prompt you for a word list.
  30. -----------------------------------------------------------------------------
  31.  
  32. PARSE [inputfilename] [outputfilename]
  33. The input file should be a unix style /etc/passwd file.
  34. The output file will be those lines of the input file that contain encrypted passwords.
  35. Three (3) files will be created other than the output file:
  36. NOLOGIN.TXTùContains lines with invalid encrypted passwords.
  37. NOPASS.TXTùContains lines with null passwords.
  38. GECOS.TXTùContains words from the gecos field.
  39. -----------------------------------------------------------------------------
  40.  
  41. QSORT [inputfile]
  42. Sorts lines of the input file. A temporary file is used and the output file has the name of the input file. (Input file is lost)
  43. -----------------------------------------------------------------------------
  44.  
  45. STRIP < inputfile > outputfile
  46. Removes trailing blanks from the input file. This program uses stdio so you must use DOS redirection.
  47. -----------------------------------------------------------------------------
  48.  
  49. UNIQUE [inputfilename] [outputfilename]
  50. Removes duplicate lines from the input file. The input file must be sorted.
  51. -----------------------------------------------------------------------------
  52.